home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 15 / Mac Magazin and MacEasy Magazine CD - Issue 15.iso / Spiele & Edutainment / FTBL95 folder / README.TXT < prev    next >
Text File  |  1995-09-29  |  3KB  |  46 lines

  1. Instructions for FTBL, a freeware football simulation
  2. by Greg Olson (GJOLSON@BPA.GOV).
  3.  
  4. This is a simple Football simulation with stats from the start
  5. of the 1995 NFL season.  It is a minimal conversion of a program I wrote
  6. for the Color Computer 3, and compiled using FutureBasic.
  7.   
  8. First run NFL to select the teams.  (The cursor is moved with the 
  9. arrow keys - sorry.)  Basic instructions are in NFL, and help can be optained 
  10. at user prompts in the main FTBL program (Type 'H').  Note that this version
  11. responds both to the keyboard, and to menus.  The program will run in the 
  12. background under System 7)  All commands are issued by pressing a single key.  
  13. To quit any program, press 'Q', or select Quit from the File menu.
  14.  
  15. This version includes a Print Spooler.  The statistics screens can be printed to the spooler manually, or will automatically be sent in the Auto mode.  At the end of the program the spool can be printed or discarded.
  16.  
  17. Note:  all files (programs, Teams.dat, etc.) must be in the same folder for the
  18. game to work properly.
  19.  
  20.  
  21. Programming notes:
  22.  
  23. On the CC3 the main FTBL program had to fit into 32K, so I created a separate
  24. team selection program which contained the stats for a given year.  Since the
  25. language was interpreted, I could just edit the NFL code and give each version a
  26. year suffix, e.g. NFL92, NFL93.  Since the Mac version is compiled, I split the data
  27. out from the NFL program.  You can modify the stats as you see fit, but the program
  28. will only read a file named STATS.DAT.  Comments in the Stats file are preceded
  29. by an apostrophe, and are ignored by the program.  All other data must be
  30. in the same format (numeric or alpha) and the same order.
  31.  
  32. Each statistic represents the relative strength of a team in a given area
  33. (rushing, passing, defense against the run or pass, field goal kicking and punting,
  34. and coaching stategy: -1=conservative, 0=balanced, 1=aggresive).
  35.  
  36. I compiled my stats primarily by using ave yards per rush, pass, etc, and giving the best (league-wide) average a .99, the worst a .72, and weighting everything in 
  37. between accordingly.  (This becomes simply solving 2 simultaneous equations.)
  38.  
  39. If you enjoy the game feel free to modify your stats however you choose, but the
  40. program will probably work best if you stick to values between .72 and .99
  41.  
  42. Note I modified the main program to use the new 1994 rules (2pt conversion, etc).
  43. I also provided two versions of the 94 stats, one based on yards-per-game, and the
  44. other on yards-per-play (STATS94.DAT and STATS94alt.DAT respectively).
  45. Copy your preference to STATS.DAT.
  46.